home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / metkit / catalog.h < prev    next >
C/C++ Source or Header  |  1997-06-07  |  919b  |  23 lines

  1. //    Copyright (C) 1996, 1997 Meta Four Software.  All rights reserved.
  2. //
  3. //  Recursive directory scanner sample code
  4. //
  5. //! rev="$Id: catalog.h,v 1.3 1997/05/27 00:06:35 jcw Rel $"
  6.  
  7. /////////////////////////////////////////////////////////////////////////////
  8.  
  9.     // The following properties are used in this code
  10. extern c4_ViewProp      pFiles;
  11. extern c4_IntProp       pParent, pSize, pDate;
  12. extern c4_StringProp    pName;
  13.  
  14.     // Scan a directory tree and return a corresponding structure for it.
  15.     // The data structure of the object returned by this routine is:
  16.     //      [parent:i, name:s, files [name:s, size:i, date:i]]
  17. extern c4_View fScanDirectories(const char* path_);
  18.  
  19.     // Reconstruct the full path name from a subdirectory index in the tree
  20. extern c4_String fFullPath(c4_View& dirs_, int dirNum_);
  21.  
  22. /////////////////////////////////////////////////////////////////////////////
  23.